home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / FFC / _TABLE.H < prev    next >
Encoding:
Text File  |  1998-05-26  |  3.3 KB  |  83 lines

  1. * _TABLE.H
  2.  
  3. ***********************************
  4. * constants for _Table* classes
  5.  
  6. #DEFINE DB_BUFLOCKRECORD        2
  7. #DEFINE DB_BUFOPTRECORD         3    
  8.  
  9. #DEFINE FILTER_MAX_FILTER       255
  10.  
  11. #DEFINE MB_ICONEXCLAMATION   48
  12. #DEFINE MB_YESNOCANCEL        3
  13. #DEFINE IDYES                 6
  14. #DEFINE IDNO                  7
  15.  
  16. ***********************************
  17. * localization for _Table* classes
  18.  
  19. * _TableFind* buttons and dialog class strings
  20.  
  21. #DEFINE FIND_LOOKFOR_LOC          "\<Look for:"
  22. #DEFINE FIND_LOOKIN_LOC           "Look \<in:"
  23. #DEFINE FIND_OPTIONS_LOC          "Options"
  24. #DEFINE FIND_WRAPAROUND_LOC       "Wrap aroun\<d"
  25. #DEFINE FIND_MATCHCASE_LOC        "\<Match case"
  26. #DEFINE FIND_SKIPMEMOS_LOC        "\<Skip memos"
  27. #DEFINE FIND_FIND_LOC             "\<Find"
  28. #DEFINE FIND_FINDNEXT_LOC         "Find \<next"
  29. #DEFINE FIND_CANCEL_LOC           "\<Cancel"
  30. #DEFINE FIND_NOFIND_LOC           "Not found"
  31. #DEFINE FIND_CAPTION_LOC          "Find"
  32. #DEFINE FIND_FINDIN_LOC           "Find in"
  33.  
  34. ***********************************
  35. * _TableSetFilterDialog strings:
  36.  
  37. #DEFINE SETFILTER_CAPTION_LOC     "\<Set filter"
  38. #DEFINE SETFILTER_APPLY_LOC       "\<Apply"
  39. #DEFINE SETFILTER_MAXLENGTH_LOC   "Filter must be <255 characters."
  40. #DEFINE SETFILTER_INVALID_LOC     "Filter must be logical in type."
  41. #DEFINE SETFILTER_BUILDEXPR_LOC   "\<Build expression"
  42. #DEFINE SETFILTER_SIMPLE_LOC      "Simple"
  43. #DEFINE SETFILTER_COMPLEX_LOC     "Complex"
  44. #DEFINE SETFILTER_CANCEL_LOC      "\<Cancel"
  45. #DEFINE SETFILTER_EDIT_LOC        "\<Edit"
  46. #DEFINE SETFILTER_NEED_LIB_LOC    "Need _TABLE.VCX library!"
  47.  
  48.  
  49. **********************************
  50. * _TableSimpleFilterDialog strings:
  51.  
  52. #DEFINE FILTER_CANCELLED_LOC             "Cancelled"
  53. #DEFINE FILTER_SECONDS_LOC               "Seconds"
  54. #DEFINE FILTER_TOO_LONG_LOC              "Expression too long"
  55. #DEFINE FILTER_RECORDS_LOC               "Records"
  56. #DEFINE FILTER_NUMERIC_REQUIRED_LOC      "Numeric field; a number is expected"
  57. #DEFINE FILTER_NUMERIC_NO_QUOTES_LOC     "Numeric field; quotes are not allowed"
  58. #DEFINE FILTER_MISSING_VALUE_LOC         "Missing value"
  59. #DEFINE FILTER_CHECKING_OPEN_TABLES_LOC  "Checking open files.. "
  60. #DEFINE FILTER_NO_SINGLE_QUOTES_LOC      "Can't have single quote in value"
  61. #DEFINE FILTER_QUERY_LIST_FULL_LOC       "The query list is full." 
  62.  
  63. ***********************************
  64. * _Table class strings:
  65.  
  66. #DEFINE TABLE_MESSAGE_TITLE_ROW_CHANGED_LOC "Data in this row has been changed."
  67.  
  68. #DEFINE TABLE_MESSAGE_ROW_CHANGED_LOC       "Before moving to another record,"+CHR(13)+ ;
  69.                                             "do you wish to: "+CHR(13)+CHR(13)+;
  70.                                             "  SAVE changes  (Yes)"+CHR(13)+;
  71.                                             "  REVERT changes (No) or"+CHR(13)+ ;
  72.                                             "  REMAIN on the record (Cancel)?"
  73. ************************
  74. * _dialog fonts
  75. #DEFINE SYSTEM_LARGEFONTS            FONTMETRIC(1, 'MS Sans Serif', 8, '') # 13 OR ;
  76.                                      FONTMETRIC(4, 'MS Sans Serif', 8, '') # 2 OR ;
  77.                                      FONTMETRIC(6, 'MS Sans Serif', 8, '') # 5 OR ;
  78.                                      FONTMETRIC(7, 'MS Sans Serif', 8, '') # 11
  79.  
  80. #DEFINE DIALOG_SMALLFONT_NAME        "MS Sans Serif"
  81. #DEFINE DIALOG_LARGEFONT_NAME        "Arial"
  82.  
  83.